By: ThemesTrace
Email: themestracehelp@gmail.com
Thank you for purchasing Miwlo HTML template. If you have any questions that are beyond the scope of this help file, please feel free to email via our user page contact form here. Thanks so much!
Miwlo - Landing Page HTML Template comes with clean and commented code. If you like to use the section which is used in Miwlo then need to use the area section as shows below
If you would like to edit the color, font, or style of any elements in one of these columns, you would do the following:
.header-area {
position: fixed;
top: 0;
width: 100%;
z-index: 999;
transition: all 0.4s ease-in-out;
}
If you find that your new style is not overriding, it is most likely because of a specificity problem. Scroll down in your CSS file and make sure that there isn't a similar style that has more weight.
I.E.
.header-area.fixed {
background: #fff;
box-shadow: 0px 4px 5px 0px rgba(0, 0, 30, 0.06);
}
Miwlo Template contains two main CSS files. The first one is a generic normalize file. Many browser interpret the default behavior of html elements differently. By using a general normalize CSS file, we can work round this. This file also contains some general styling, such as anchor tag colors, font-sizes, etc. Keep in mind, that these values might be overridden somewhere else in the file.
The second file contains all of the specific stylings for the page. The file is separated into sections using:
/*
-- Generic Area
==========================================================
*/
Generic Area CSS
/*
-- Header Area
==========================================================
*/
Header Area CSS
/*
-- Section Area
==========================================================
*/
-- Section Area CSS
/*
-- Section Area
==========================================================
*/
Section Area CSS
If you would like to edit a specific section of the site, simply find the appropriate label in the CSS file, and then scroll down until you find the appropriate style that needs to be edited.
.footer-large {
padding: 50px 0;
border-top: 1px solid #ededed;
border-bottom: 1px solid #ededed;
}
/*
======================================
Scroll Init
======================================
*/
(function() {
$(window).on('scroll', function() {
var $headerH = jQuery('.header-area').height();
var $windowH = jQuery(window).scrollTop();
var $nav = jQuery('.header-area');
var $mNav = jQuery('.miwlo-mobile-menu-area');
if( $windowH > $headerH ) {
$nav.addClass('fixed');
$mNav.addClass('fixed');
} else {
$nav.removeClass('fixed');
$mNav.removeClass('fixed');
}
});
})();
Miwlo comes with the following images, icons or other files as listed.